runtime.m.cgoCallers (field)
13 uses
runtime (current package)
cgocall.go#L141: mp.cgoCallers[0] = 0
proc.go#L868: mp.cgoCallers = new(cgoCallers)
proc.go#L4948: if mp.cgoCallersUse.Load() == 0 && mp.cgoCallers != nil && mp.cgoCallers[0] != 0 {
proc.go#L4949: for cgoOff < len(mp.cgoCallers) && mp.cgoCallers[cgoOff] != 0 {
proc.go#L4952: n += copy(stk[:], mp.cgoCallers[:cgoOff])
proc.go#L4953: mp.cgoCallers[0] = 0
runtime2.go#L572: cgoCallers *cgoCallers // cgo traceback if crashing in cgo call
traceback.go#L845: if iscgo && gp.m != nil && gp.m.ncgo > 0 && gp.syscallsp != 0 && gp.m.cgoCallers != nil && gp.m.cgoCallers[0] != 0 {
traceback.go#L853: cgoCallers := *gp.m.cgoCallers
traceback.go#L854: gp.m.cgoCallers[0] = 0
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |